Bash, batch find and remove files

#!/bin/bash

# Navigate to the directory
cd /path/to/directory

# Remove all files with the extension .module.css.map
find ./ -name "*.module.css" -type f -delete


Credits

index